        #manageTabs .nav-link.active {
            background: linear-gradient(90deg, var(--primary), var(--secondary)) !important;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
        }

        #manageTabs .nav-link:not(.active):hover {
            background: rgba(255, 255, 255, 0.05);
        }

        /* --- Seletor de Pagamento --- */
        .payment-methods-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
            margin-bottom: 20px;
        }

        .btn-payment-method {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass-border);
            color: white;
            padding: 15px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-payment-method:hover {
            background: rgba(139, 92, 246, 0.2);
            border-color: var(--primary);
            transform: translateX(5px);
        }

        .method-icon {
            font-size: 1.5rem;
            width: 40px;
            text-align: center;
        }

        /* Cores específicas para os ícones */
        .fa-pix {
            color: #32bcad;
        }

        .fa-credit-card {
            color: #f59e0b;
        }

        .fa-handshake {
            color: #009ee3;
        }

        /* Azul MP */

        /* Iframe Container */
        /* Iframe Container Otimizado */
        /* --- Iframe Scroll Fix Mobile --- */
        .iframe-scroll-wrapper {
            width: 100%;
            height: 75vh;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            /* Correção iOS */
            border-radius: 12px;
            background: white;
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
        }

        .iframe-content {
            width: 100%;
            height: 100%;
            /* Ocupa 100% do wrapper */
            min-height: 600px;
            /* Garante altura interna suficiente para scrollar */
            border: none;
            display: block;
        }

        @media (max-width: 768px) {
            .iframe-scroll-wrapper {
                height: 80vh;
            }
        }

        /* Em celulares, ajusta para não estourar a tela */
        @media (max-width: 768px) {
            .iframe-container {
                height: 80vh;
                min-height: auto;
            }

            .modal-body {
                padding: 0.5rem!important;
                /* Ganha mais espaço nas bordas em mobile */
            }
        }

        :root {
            /* Paleta Dark Purple Neon */
            --primary: #8b5cf6;
            /* Violeta Médio */
            --primary-glow: #7c3aed;
            /* Violeta Escuro para Glow */
            --secondary: #d946ef;
            /* Fuchsia */
            --bg-deep: #050505;
            /* Quase Preto */
            --bg-gradient: radial-gradient(circle at 50% 0%, #2e1065 0%, #050505 70%);

            /* Glassmorphism Variables */
            --glass-bg: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(255, 255, 255, 0.08);
            --glass-highlight: rgba(255, 255, 255, 0.05);
            /* --glass-blur: blur(16px); */
            --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

            /* Cores de Texto */
            --text-main: #ffffff;
            --text-muted: #94a3b8;

            /* Status */
            --success: #10b981;
            --warning: #f59e0b;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            background: var(--bg-deep);
            background-image: var(--bg-gradient);
            color: var(--text-main);
            font-family: 'Outfit', sans-serif;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        /* Ambient Glow (Luzes de fundo) */
        body::before {
            content: '';
            position: fixed;
            top: -100px;
            left: -100px;
            width: 50vw;
            height: 50vw;
            background: var(--primary);
            /* filter: blur(150px); */
            opacity: 0.2;
            z-index: -1;
            border-radius: 50%;
        }

        body::after {
            content: '';
            position: fixed;
            bottom: -100px;
            right: -100px;
            width: 60vw;
            height: 60vw;
            background: var(--secondary);
            /* filter: blur(180px); */
            opacity: 0.15;
            z-index: -1;
            border-radius: 50%;
        }

        /* --- Componentes Glass --- */
        .glass-panel {
            background: var(--glass-bg);
            /* backdrop-filter: var(--glass-blur); */
            /* -webkit-backdrop-filter: var(--glass-blur); */
            border: 1px solid var(--glass-border);
            box-shadow: var(--glass-shadow);
            border-radius: 24px;
        }

        /* --- Header --- */
        .shop-header {
            padding: 2.5rem 1.5rem 1rem;
            text-align: center;
        }

        .brand-icon {
            font-size: 3rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
            filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.3));
        }

        .shop-title {
            font-weight: 800;
            font-size: 2rem;
            margin-bottom: 0.2rem;
            letter-spacing: -0.5px;
        }

        .seller-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            background: rgba(139, 92, 246, 0.15);
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 50px;
            font-size: 0.85rem;
            color: #d8b4fe;
            margin-top: 10px;
        }

        /* --- Tabs Modernas --- */
        .nav-pills-custom {
            display: flex;
            background: rgba(0, 0, 0, 0.3);
            padding: 5px;
            border-radius: 100px;
            margin: 1.5rem auto 2rem;
            max-width: 350px;
            border: 1px solid var(--glass-border);
        }

        .nav-item-custom {
            flex: 1;
            text-align: center;
            padding: 10px;
            border-radius: 100px;
            cursor: pointer;
            color: var(--text-muted);
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .nav-item-custom.active {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: white;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
            font-weight: 600;
        }

        /* --- Card Produto --- */
        .products-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
            padding: 0 1rem 3rem;
        }

        @media(min-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            }
        }

        .product-card {
            position: relative;
            padding: 1.75rem;
            transition: transform 0.3s ease;
            overflow: hidden;
        }

        .product-card:active {
            transform: scale(0.98);
        }

        .product-card:hover {
            border-color: rgba(139, 92, 246, 0.4);
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            opacity: 0.7;
        }

        .prod-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .days-badge {
            background: rgba(255, 255, 255, 0.1);
            padding: 6px 12px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .prod-icon-bg {
            font-size: 1.5rem;
            color: var(--text-muted);
            opacity: 0.5;
        }

        .prod-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .prod-price {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
        }

        .prod-price small {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 400;
            text-shadow: none;
        }

        .feature-list {
            list-style: none;
            margin: 1.5rem 0;
            padding: 0;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
            color: #cbd5e1;
            font-size: 0.9rem;
        }

        .feature-list li i {
            color: var(--success);
            font-size: 1rem;
            width: 20px;
            text-align: center;
        }

        .btn-buy {
            width: 100%;
            border: none;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 16px;
            border-radius: 16px;
            font-weight: 700;
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.25);
            transition: all 0.3s ease;
        }

        .btn-buy:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
            color: white;
        }

        /* --- Modal Customizado --- */
        .modal-glass {
            background: rgba(5, 5, 5, 0.85);
            /* backdrop-filter: blur(10px); */
        }

        .modal-content-glass {
            background: #0f0f13;
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        .modal-header {
            border-bottom: 1px solid var(--glass-border);
            padding: 1.5rem;
        }
        
        .btn-close-white {
            filter: invert(1) grayscale(100%) brightness(200%);
        }

        /* --- PIX Area --- */
        .pix-container {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            padding: 1.5rem;
            text-align: center;
            border: 1px dashed var(--glass-border);
        }

        .qr-wrapper {
            background: white;
            padding: 10px;
            border-radius: 16px;
            display: inline-block;
            margin: 1.5rem 0;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
        }

        .copy-input {
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid var(--primary);
            color: var(--text-muted);
            padding: 12px;
            border-radius: 12px;
            font-family: monospace;
            font-size: 0.85rem;
            word-break: break-all;
            cursor: pointer;
            transition: all 0.2s;
        }

        .copy-input:hover {
            background: rgba(139, 92, 246, 0.1);
            color: white;
        }

        /* --- Input Revenda --- */
        .input-glass {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--glass-border);
            color: white;
            padding: 15px;
            border-radius: 14px;
            width: 100%;
        }

        .input-glass:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(0, 0, 0, 0.5);
        }

        /* Loading */
        .loader {
            width: 48px;
            height: 48px;
            border: 5px solid rgba(255, 255, 255, 0.1);
            border-bottom-color: var(--primary);
            border-radius: 50%;
            animation: rotation 1s linear infinite;
            margin: 0 auto;
        }

        @keyframes rotation {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        /* --- Barra Flutuante de Login --- */
        .floating-login-bar {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 500px;
            background: rgba(16, 185, 129, 0.15);
            /* Verde Sutil */
            /* backdrop-filter: blur(12px); */
            border: 1px solid rgba(16, 185, 129, 0.4);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(16, 185, 129, 0.2);
            border-radius: 100px;
            padding: 12px 20px;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            animation: floatUp 1s ease-out, pulseGlow 2s infinite alternate;
            transition: transform 0.2s;
        }

        .floating-login-bar:active {
            transform: translateX(-50%) scale(0.95);
        }

        .float-content {
            display: flex;
            align-items: center;
            gap: 12px;
            color: white;
            font-weight: 600;
        }

        .float-icon {
            background: #10b981;
            color: #000;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        .btn-view-login {
            background: #10b981;
            color: #000;
            border: none;
            padding: 6px 16px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.85rem;
        }

        @keyframes floatUp {
            from {
                bottom: -100px;
                opacity: 0;
            }

            to {
                bottom: 20px;
                opacity: 1;
            }
        }

        @keyframes pulseGlow {
            from {
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            }

            to {
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(16, 185, 129, 0.4);
            }
        }

        /* Detalhes do Modal de Login */
        .login-detail-row {
            display: flex;
            justify-content: space-between;
            padding: 12px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            margin-bottom: 8px;
            align-items: center;
        }

        .login-label {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .login-value {
            color: white;
            font-weight: 600;
            font-family: monospace;
            font-size: 1.1rem;
        }



        /* Wrapper que segura o botão e o texto */
        .telegram-wrapper {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            /* Coloca um item embaixo do outro */
            align-items: center;
            /* Centraliza o texto com a bolinha */
            gap: 6px;
            /* Espaço entre a bolinha e o texto */
            text-decoration: none;
            /* Remove sublinhado do link */
        }

        /* O Botão Redondo (Estilo ajustado) */
        .btn-telegram-float {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
            color: white;
            border-radius: 50%;
            font-size: 28px;
            box-shadow: 0 4px 15px rgba(34, 158, 217, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid rgba(255, 255, 255, 0.2);
            position: relative;
            /* Necessário para o efeito pulse */
        }

        /* Efeito ao passar o mouse */
        .telegram-wrapper:hover .btn-telegram-float {
            transform: scale(1.1) rotate(-10deg);
            box-shadow: 0 8px 25px rgba(34, 158, 217, 0.8);
            border-color: rgba(255, 255, 255, 0.6);
        }

        /* Animação de Onda (Pulse) */
        .btn-telegram-float::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 50%;
            background: rgba(34, 158, 217, 0.6);
            z-index: -1;
            animation: pulse-tele 2s infinite;
        }

        @keyframes pulse-tele {
            0% {
                transform: scale(1);
                opacity: 0.6;
            }

            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        /* O Texto "Suporte" */
        .telegram-label {
            color: white;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
            /* Sombra para ler bem em fundo claro ou escuro */
            background: rgba(0, 0, 0, 0.5);
            /* Fundo escuro sutil para contraste */
            padding: 2px 8px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        /* Efeito no texto ao passar o mouse */
        .telegram-wrapper:hover .telegram-label {
            background: rgba(34, 158, 217, 1);
            text-shadow: none;
        }


        /* --- Seletor de Idioma Flutuante --- */
.lang-wrapper {
    position: fixed;
    bottom: 115px; /* Ajustado para ficar acima do Telegram */
    right: 27px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.btn-lang-float {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.lang-wrapper:hover .btn-lang-float {
    transform: scale(1.1);
    border-color: var(--primary);
}

.lang-wrapper:hover .telegram-label {
    background: var(--primary);
}